home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / os2tools / devshell / dshell.doc < prev    next >
Encoding:
Text File  |  1991-12-08  |  4.3 KB  |  121 lines

  1. /*------------------------------------------------------*/
  2. /*           DevShell - Developers Shell                */
  3. /*              Version 1.0 Revision 1.7                */
  4. /*                 Documentation                        */
  5. /*  (C) Copyright 1991, 1992 Frank V. Castellucci       */
  6. /*               All Rights Reserved                    */
  7. /*------------------------------------------------------*/
  8.  
  9. ----------------------- DO NOT REMOVE --------------------
  10.  
  11. Legal Stuff
  12. -----------
  13.  
  14. DevShell is released to the public domain with the following
  15. restrictions:
  16.  
  17.         1. At least the following files must be included when
  18.            tranferring or copying between computers, BBS, etc.:
  19.            
  20.                 DevShell.Cmd
  21.                 DevMan.Cmd
  22.                 DShell.Doc
  23.                 DShell.Cfg
  24.                 
  25.         2. All copyright notices must be maintained in the DevShell.Cmd
  26.            DevMan.Cmd, and DevShell.Doc files.
  27.            
  28.         3. The addition of new features or files should be listed and
  29.            documented in this text.
  30.            
  31.         4. All enhancments, fixes, etc. should be listed in the Log
  32.            section, with the most recent changes shown first.
  33.            
  34.         5. It (DevShell and all files) is to be provided for FREE. If
  35.            you paid for this then you were ripped off and should burn
  36.            down the house of the scum that did it to you!
  37.            
  38.  
  39. Package
  40. -------
  41.  
  42. The following files are included with Release 1.7 of DevShell:
  43.  
  44.         DevShell.Cmd    -       OS/2 Rexx Command File
  45.         DevMan.Cmd      -       Online Help System
  46.         DShell.Doc      -       Documentation
  47.         DShell.Cfg      -       Sample Configuration File
  48.         
  49. Anyone making additions to the DevShell system should indicate the
  50. files here as well.
  51.  
  52. Contact
  53. --------
  54. Frank V. Castellucci    
  55. RR1 265 Overlook Way
  56. Purdys, NY. 10578
  57.  
  58.         Phone           -       (914) 277-4312
  59.         CI$             -       72261,2700
  60.         BBS Frequented  -       Gilmores ( /359 ), Fernwood, 
  61.                                 Execnet, OS/2 Shareware
  62.  
  63. Introduction
  64. ------------
  65. While doing non-stop development for Osrm2 I decided it would be good
  66. to take a break and do something different for a weekend.
  67.  
  68. As a mainframe babyboomer I had experience with the VM flavor
  69. of Rexx ( 4-5 years ago! ) and was somewhat familiar with the nature of
  70. the puppy. This re-visit soon made me realize there is more under
  71. the hood then I considered during my first encounter.
  72.  
  73. So DevShell was, and is being, created as an educational vehicle as well.
  74.  
  75. The goal is to create an easy to understand, powerful, reconfigurable,
  76. and fun developers shell using OS/2's Rexx. Version 1.0 of DevShell is
  77. what I have been able to do up to this point ( 12.07.1991 ).
  78.  
  79. Before you pass judgement on it, enhance it! Like I said, I am just 
  80. picking it up again and I KNOW it is rusty, even potentially buggy in
  81. a few areas. But if you feel the need to comment to me, I can be
  82. reached at the above places at various points of the 24 hour day.
  83.  
  84. DevShell        
  85. --------
  86. DevShell is an enhanced command enviroment geared towards the 
  87. developer. It is completely ( even the on-line help ) written in Rexx so
  88. it can be modified to suit the users own ideas and needs.
  89.  
  90. DevShell builds its personality by definitions in the configuration
  91. file (Dshell.Cfg). Within this file are application, volume, and
  92. alias executable assignments that reduce the need for knowing every
  93. file, directory, compiler name, etc.
  94.  
  95. The real power, at this release, is the alias EXEC statements which
  96. can indirectly reference applications (cl,make,link,etc...) with
  97. one (1) command. 
  98.  
  99. With the EXEC command you can even extend the shell to call other
  100. Rexx '.CMD' files. 
  101.  
  102. Help
  103. ----
  104. Forget it. You have the source, you have the online help system, you
  105. have the configuration file, look at it! It is very straight foward and
  106. a basic programmer could pick it up overnight, and soon find themselves
  107. enhancing it.
  108.  
  109. "No matter where you go, there you are."
  110.  
  111. ---------------------------------------------------------------------
  112.  
  113. $Log:   dshell.doc $
  114. Revision 1.2  91/12/08  12:57:21  FJC
  115. Added intro, rules, general information.
  116.  
  117. Revision 1.1  91/12/01  23:24:16  FJC
  118. First draft
  119.  
  120. -----
  121.